3.5 查询本地组织架构详情(根据path查询)
基本信息
Path: /api/v1/localUserGroup/queryGroupByPath
Method: GET
接口描述:
请求参数
Query
注意:
参数名称 | 是否必须 | 示例 | 备注 |
---|---|---|---|
path | 必须 | 组织架构路径 |
返回数据
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
code | string | 必须 | 错误码,非0表示失败 | ||
data | object | 必须 | 返回数据 | ||
├─ id | string | 必须 | 组织架构ID | ||
├─ name | string | 必须 | 组织架构名字 | ||
├─ description | string | 必须 | 组织架构描述信息 | ||
├─ parentGroupId | string | 必须 | 所属组织架构ID | ||
├─ hasChild | number | 必须 | 是否有子组,0没有,1有 | ||
├─ path | string | 必须 | 所属组路径 | ||
├─ children | object[] | 必须 | 子组 | ||
├─├─ id | string | 必须 | 组ID | ||
├─├─ name | string | 必须 | 组名 | ||
├─├─ path | string | 必须 | 所属组路径 | ||
├─├─ parentGroupId | string | 必须 | 所属组ID | ||
├─├─ hasChild | string | 必须 | 是否有子组,0没有,1有 | ||
msg | string | 必须 | 错误消息 |
返回示例
{
"code": 0,
"data": {
"id": "6b54b140-c76c-11eb-a92b-0d833ab27eb4",
"name": "集团",
"path": "/",
"parentGroupId": "root",
"hasChild": 1,
"children": [
{
"id": "6bc610b0-c76c-11eb-a92b-0d833ab27eb4",
"name": "分公司",
"path": "/集团",
"parentGroupId": "6b54b140-c76c-11eb-a92b-0d833ab27eb4",
"hasChild": 1
}
]
},
"msg": "请求成功",
"traceId": "02e189fc40c01000"
}
错误信息
错误提示 | 错误码 |
---|---|
请输入正确的组织架构路径格式:请以“/”开头 | 7201 |
参数检查出错 | 10000001 |